home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11inc.lha / X11 / Xm / Form.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.5 KB  |  62 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
  3.  * ALL RIGHTS RESERVED
  4. */ 
  5. /*   $RCSfile: Form.h,v $ $Revision: 1.17 $ $Date: 92/05/14 12:51:52 $ */
  6. /*
  7. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  8. /*
  9. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  10. #ifndef _XmForm_h
  11. #define _XmForm_h
  12.  
  13.  
  14. #include <Xm/BulletinB.h>
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20. /*  Form Widget  */
  21.  
  22. externalref WidgetClass xmFormWidgetClass;
  23.  
  24. typedef struct _XmFormClassRec * XmFormWidgetClass;
  25. typedef struct _XmFormRec      * XmFormWidget;
  26.  
  27.  
  28. /* ifndef for Fast Subclassing  */
  29.  
  30. #ifndef XmIsForm
  31. #define XmIsForm(w)    XtIsSubclass(w, xmFormWidgetClass)
  32. #endif  /* XmIsForm */
  33.  
  34. /********    Public Function Declarations    ********/
  35. #ifdef _NO_PROTO
  36.  
  37. extern Widget XmCreateForm() ;
  38. extern Widget XmCreateFormDialog() ;
  39.  
  40. #else
  41.  
  42. extern Widget XmCreateForm( 
  43.                         Widget parent,
  44.                         char *name,
  45.                         ArgList arglist,
  46.                         Cardinal argcount) ;
  47. extern Widget XmCreateFormDialog( 
  48.                         Widget parent,
  49.                         char *name,
  50.                         ArgList arglist,
  51.                         Cardinal argcount) ;
  52.  
  53. #endif /* _NO_PROTO */
  54. /********    End Public Function Declarations    ********/
  55.  
  56. #ifdef __cplusplus
  57. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  58. #endif
  59.  
  60. #endif /* _XmForm_h */
  61. /* DON'T ADD ANYTHING AFTER THIS #endif */
  62.